home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Objects / protos / tupleobject.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-25  |  574 b   |  11 lines

  1. static void tupledealloc ( PyTupleObject *op );
  2. static int tupleprint ( PyTupleObject *op , FILE *fp , int flags );
  3. static PyObject *tuplerepr ( PyTupleObject *v );
  4. static int tuplecompare ( PyTupleObject *v , PyTupleObject *w );
  5. static long tuplehash ( PyTupleObject *v );
  6. static int tuplelength ( PyTupleObject *a );
  7. static PyObject *tupleitem ( PyTupleObject *a , int i );
  8. static PyObject *tupleslice ( PyTupleObject *a , int ilow , int ihigh );
  9. static PyObject *tupleconcat ( PyTupleObject *a , PyObject *bb );
  10. static PyObject *tuplerepeat ( PyTupleObject *a , int n );
  11.